home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / Shells / tcsh / Source / config_f.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-21  |  4.0 KB  |  134 lines

  1. /* $Header: /u/christos/src/tcsh-6.03/RCS/config_f.h,v 3.6 1992/10/18 00:43:08 christos Exp $ */
  2. /*
  3.  * config_f.h -- configure various defines for tcsh
  4.  *
  5.  * This is included by config.h.
  6.  *
  7.  * Edit this to match your particular feelings; this is set up to the
  8.  * way I like it.
  9.  */
  10. /*-
  11.  * Copyright (c) 1980, 1991 The Regents of the University of California.
  12.  * All rights reserved.
  13.  *
  14.  * Redistribution and use in source and binary forms, with or without
  15.  * modification, are permitted provided that the following conditions
  16.  * are met:
  17.  * 1. Redistributions of source code must retain the above copyright
  18.  *    notice, this list of conditions and the following disclaimer.
  19.  * 2. Redistributions in binary form must reproduce the above copyright
  20.  *    notice, this list of conditions and the following disclaimer in the
  21.  *    documentation and/or other materials provided with the distribution.
  22.  * 3. All advertising materials mentioning features or use of this software
  23.  *    must display the following acknowledgement:
  24.  *    This product includes software developed by the University of
  25.  *    California, Berkeley and its contributors.
  26.  * 4. Neither the name of the University nor the names of its contributors
  27.  *    may be used to endorse or promote products derived from this software
  28.  *    without specific prior written permission.
  29.  *
  30.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  31.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  32.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  33.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  34.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  35.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  36.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  37.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  38.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  39.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  40.  * SUCH DAMAGE.
  41.  */
  42. #ifndef _h_config_f
  43. #define _h_config_f
  44.  
  45. /*
  46.  * SHORT_STRINGS Use 16 bit characters instead of 8 bit chars
  47.  *              This fixes up quoting problems and eases implementation
  48.  *             of nls...
  49.  *
  50.  */
  51. #define SHORT_STRINGS
  52.  
  53. /*
  54.  * NLS:        Use Native Language System
  55.  *        Routines like setlocale() are needed
  56.  *        if you don't have <locale.h>, you don't want
  57.  *        to define this.
  58.  */
  59. #define NLS
  60.  
  61. /*
  62.  * LOGINFIRST   Source ~/.login before ~/.cshrc
  63.  */
  64. #undef LOGINFIRST
  65.  
  66. /*
  67.  * VIDEFAULT    Make the VI mode editor the default
  68.  */
  69. #undef VIDEFAULT
  70.  
  71. /*
  72.  * KAI          use "bye" command and rename "log" to "watchlog"
  73.  */
  74. #undef KAI
  75.  
  76. /*
  77.  * TESLA    drops DTR on logout. Historical note:
  78.  *        tesla.ee.cornell.edu was a vax11/780 with a develcon
  79.  *        switch that sometimes would not hang up.
  80.  */
  81. #undef TESLA
  82.  
  83. /*
  84.  * DOTLAST      put "." last in the default path, for security reasons
  85.  */
  86. #define DOTLAST
  87.  
  88. /*
  89.  * AUTOLOGOUT    tries to determine if it should set autologout depending
  90.  *        on the name of the tty, and environment.
  91.  *        Does not make sense in the modern window systems!
  92.  */
  93. #define AUTOLOGOUT
  94.  
  95. /*
  96.  * SUSPENDED    Newer shells say 'Suspended' instead of 'Stopped'.
  97.  *        Define to get the same type of messages.
  98.  */
  99. #define SUSPENDED
  100.  
  101. /*
  102.  * KANJI    Ignore meta-next, and the ISO character set. Should
  103.  *        be used with SHORT_STRINGS
  104.  *
  105.  */
  106. #undef KANJI
  107.  
  108. /*
  109.  * SYSMALLOC    Use the system provided version of malloc and friends.
  110.  *        This can be much slower and no memory statistics will be
  111.  *        provided.
  112.  */
  113. #if defined(PURIFY) || defined(MALLOC_TRACE)
  114. # define SYSMALLOC
  115. #else
  116. # undef SYSMALLOC
  117. #endif
  118.  
  119. /*
  120.  * RCSID    This defines if we want rcs strings in the binary or not
  121.  *
  122.  */
  123. #if !defined(lint) && !defined(SABER)
  124. # ifndef __GNUC__
  125. #  define RCSID(id) static char *rcsid = (id);
  126. # else
  127. #  define RCSID(id) static char *rcsid() { return rcsid(id); }
  128. # endif /* !__GNUC__ */
  129. #else
  130. # define RCSID(id)    /* Nothing */
  131. #endif /* !lint && !SABER */
  132.  
  133. #endif /* _h_config_f */
  134.